home *** CD-ROM | disk | FTP | other *** search
/ EuroCD 3 / EuroCD 3.iso / Programming / Python1.4_Source / Objects / protos / tupleobject_protos.h < prev    next >
Text File  |  1998-06-24  |  561b  |  13 lines

  1.  
  2. /* tupleobject.c */
  3. static void tupledealloc ( tupleobject *op );
  4. static int tupleprint ( tupleobject *op , FILE *fp , int flags );
  5. static object *tuplerepr ( tupleobject *v );
  6. static int tuplecompare ( tupleobject *v , tupleobject *w );
  7. static long tuplehash ( tupleobject *v );
  8. static int tuplelength ( tupleobject *a );
  9. static object *tupleitem ( tupleobject *a , int i );
  10. static object *tupleslice ( tupleobject *a , int ilow , int ihigh );
  11. static object *tupleconcat ( tupleobject *a , object *bb );
  12. static object *tuplerepeat ( tupleobject *a , int n );
  13.